home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 Extra / Chip_Extra_1999.iso / share / aktuell / mimarzip / m8vcs99.exe / MimarSinan ACE Wrapper (ACE) / ace12b / UNACESRC / OS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-07-03  |  358 b   |  25 lines

  1. #ifndef __os_h
  2. #define __os_h
  3.  
  4.  
  5. #if defined(AMIGA)
  6.   #define DIRSEP '/'
  7.   #define HI_LO_BYTE_ORDER
  8. #endif
  9.  
  10. #if defined(DOS) || defined(WINNT) || defined(WIN16)
  11.   #define DIRSEP '\\'
  12.   #define LO_HI_BYTE_ORDER
  13. #endif
  14.  
  15. #if defined(OS2)
  16.   #define DIRSEP '\\'
  17.   #define LO_HI_BYTE_ORDER
  18. #endif
  19.  
  20. #if defined(UNIX)
  21.   #define DIRSEP '/'
  22. #endif
  23.  
  24. #endif /* __os_h */
  25.